﻿
body {
    font-family: 'Roboto', sans-serif;
}


h1, h2 {
    color: #333;
}

.section {
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .section h2 {
        font-size: 1.8em;
        color: #4CAF50;
    }

.office-list, .officers-table {
    margin: 20px 0;
}

    .office-list ul, .officers-table {
        list-style-type: none;
        padding: 0;
    }

        .office-list li, .officers-table th, .officers-table td {
            padding: 10px;
            border: 1px solid #ddd;
            text-align: left;
        }

    .office-list li {
        background-color: #f1f1f1;
        margin-bottom: 8px;
        border-radius: 5px;
    }

    .officers-table th {
        background-color: #4CAF50;
        color: white;
    }

.button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .office-list li, .officers-table th, .officers-table td {
        padding: 8px;
    }

    .container {
        width: 90%;
    }
}


